home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Utilities / IFX / IFX_Small / INSTALL < prev    next >
Text File  |  1990-02-23  |  1KB  |  49 lines

  1. ; IFX V2.00 Example Sounds
  2. ;
  3.  
  4. ;START
  5.  
  6. (welcome "About to install\nExample Sounds for IFX")
  7. (set @app-name "Sounds")
  8. (set @default-dest "SYS:")
  9.  
  10. (set #soundsdir
  11.    (askdir
  12.       (prompt "Where would you like me\nto install the sounds?")
  13.       (help "Find the directory where\nyou would like\nto save the example\nsoundset, and press\nProceed.\n")
  14.       (default "SYS:Prefs/Sounds")
  15.       )
  16.    )
  17.  
  18. (copyfiles
  19.    (prompt ("Copying Example Sounds to:\n" #soundsdir))
  20.    (help "Make sure all boxes\nare checked and press \nProceed.\n")
  21.    (source "")
  22.    (pattern "~(Install#?)")
  23.    (dest #soundsdir)
  24.    )         
  25.  
  26. (complete 50)
  27. (if (askbool
  28.       (prompt "Okay to add IDS file to S:IFX.ids?\nNote: the IDs already there" 
  29.               "will be KEPT")
  30.       (help "Press Yes, or, if you\nonly want the example sounds\nwithout configuration, Press \nNo")
  31.       (default 1)
  32.       )
  33.    (
  34.    (textfile
  35.       (dest "RAM:IFX.ids")
  36.       (append "defprefsdir ")
  37.       (append #soundsdir)
  38.       (append "\n")
  39.       (include "S:IFX.ids")
  40.       (include "IFX.ids")
  41.       )
  42.    (copyfiles
  43.         (source "RAM:IFX.ids")
  44.         (dest "S:")
  45.         )
  46.    )
  47.    )
  48.  
  49.